home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / chkbook / checkdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.6 KB  |  58 lines

  1. // CheckDlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1999 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CCheckDlg dialog
  15.  
  16. class CCheckDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CCheckDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CCheckDlg)
  24. #if defined(_WIN32_WCE_PSPC)
  25.     enum { IDD = IDD_CHECK_PSPC };
  26. #else // _WIN32_WCE_PSPC
  27.     enum { IDD = IDD_CHECK };
  28. #endif // _WIN32_WCE_PSPC
  29.     CString    m_strMemo;
  30.     CString    m_strPayTo;
  31.     CString    m_strCheckNo;
  32.     CString    m_strDate;
  33.     DWORD    m_dwCents;
  34.     CString    m_strAmount;
  35.     //}}AFX_DATA
  36.  
  37.  
  38. // Overrides
  39.     // ClassWizard generated virtual function overrides
  40.     //{{AFX_VIRTUAL(CCheckDlg)
  41.     protected:
  42.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  43.     virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. public:
  48.     CString GetDollarsCentsText(DWORD dwCents);
  49. protected:
  50.     CString HundredsTensOnes(DWORD dwHundredsTensOnes);
  51.     CString TensOnes(DWORD dwTensOnes);
  52.     // Generated message map functions
  53.     //{{AFX_MSG(CCheckDlg)
  54.         // NOTE: the ClassWizard will add member functions here
  55.     //}}AFX_MSG
  56.     DECLARE_MESSAGE_MAP()
  57. };
  58.